home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 April / macformat-049.iso / mac / Shareware Plus / Developers / dropg++ / usr / include / sys / ipc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  3.3 KB  |  80 lines  |  [TEXT/R*ch]

  1. /*
  2.  * Copyright (c) 1988 University of Utah.
  3.  * Copyright (c) 1990, 1993
  4.  *    The Regents of the University of California.  All rights reserved.
  5.  * (c) UNIX System Laboratories, Inc.
  6.  * All or some portions of this file are derived from material licensed
  7.  * to the University of California by American Telephone and Telegraph
  8.  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
  9.  * the permission of UNIX System Laboratories, Inc.
  10.  *
  11.  * This code is derived from software contributed to Berkeley by
  12.  * the Systems Programming Group of the University of Utah Computer
  13.  * Science Department.
  14.  *
  15.  * Redistribution and use in source and binary forms, with or without
  16.  * modification, are permitted provided that the following conditions
  17.  * are met:
  18.  * 1. Redistributions of source code must retain the above copyright
  19.  *    notice, this list of conditions and the following disclaimer.
  20.  * 2. Redistributions in binary form must reproduce the above copyright
  21.  *    notice, this list of conditions and the following disclaimer in the
  22.  *    documentation and/or other materials provided with the distribution.
  23.  * 3. All advertising materials mentioning features or use of this software
  24.  *    must display the following acknowledgement:
  25.  *    This product includes software developed by the University of
  26.  *    California, Berkeley and its contributors.
  27.  * 4. Neither the name of the University nor the names of its contributors
  28.  *    may be used to endorse or promote products derived from this software
  29.  *    without specific prior written permission.
  30.  *
  31.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  32.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  33.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  34.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  35.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  36.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  37.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  38.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  39.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  40.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  41.  * SUCH DAMAGE.
  42.  *
  43.  *    @(#)ipc.h    8.3 (Berkeley) 1/21/94
  44.  */
  45.  
  46. /*
  47.  * SVID compatible ipc.h file
  48.  */
  49. #ifndef _SYS_IPC_H_
  50. #define _SYS_IPC_H_
  51.  
  52. typedef    long    key_t;    /* XXX should be in types.h */
  53.  
  54. struct ipc_perm {
  55.     ushort    cuid;    /* creator user id */
  56.     ushort    cgid;    /* creator group id */
  57.     ushort    uid;    /* user id */
  58.     ushort    gid;    /* group id */
  59.     ushort    mode;    /* r/w permission */
  60.     ushort    seq;    /* sequence # (to generate unique msg/sem/shm id) */
  61.     key_t    key;    /* user specified msg/sem/shm key */
  62. };
  63.  
  64. /* common mode bits */
  65. #define    IPC_R        00400    /* read permission */
  66. #define    IPC_W        00200    /* write/alter permission */
  67.  
  68. /* SVID required constants (same values as system 5) */
  69. #define    IPC_CREAT    01000    /* create entry if key does not exist */
  70. #define    IPC_EXCL    02000    /* fail if key exists */
  71. #define    IPC_NOWAIT    04000    /* error if request must wait */
  72.  
  73. #define    IPC_PRIVATE    (key_t)0 /* private key */
  74.  
  75. #define    IPC_RMID    0    /* remove identifier */
  76. #define    IPC_SET        1    /* set options */
  77. #define    IPC_STAT    2    /* get options */
  78.  
  79. #endif /* !_SYS_IPC_H_ */
  80.